home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 16
/
AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso
/
rexx
/
aligner.amicad
< prev
next >
Wrap
Text File
|
1998-05-24
|
2KB
|
61 lines
/* Alignement des éléments sélectionnés */
/* $VER: Aligner.AmiCAD 1.0 (© R.Florac, 23 mai 1998) */
/* Ne gère correctement que les éléments du même type */
options results /* indispensable pour récupérer le résultat des macros */
signal on error /* pour l'interception des erreurs */
signal on syntax
'ALIGNEMENT=SELECT("Alignement"+CHR(10)+"En haut"+CHR(10)+"En bas"+CHR(10)+"À gauche"+CHR(10)+"À droite")'
alignement=result
select
when alignement=1 then ligne_base=50000
when alignement=2 then ligne_base=0
when alignement=3 then colonne_base=50000
when alignement=4 then colonne_base=0
otherwise exit
end
objets=0
'FIRSTSEL'; i=result
do while i>0
objets=objets+1
'LINE('i')'; ligne=result
'COL('i')'; colonne=result
select
when alignement = 1 then do
if ligne<ligne_base then ligne_base=ligne
end
when alignement = 2 then do
if ligne>ligne_base then ligne_base=ligne
end
when alignement = 3 then do
if colonne<colonne_base then colonne_base=colonne
end
otherwise do
if colonne>colonne_base then colonne_base=colonne
end
end
'NEXTSEL('i')'; i=result
end
if objets<2 then do
'MESSAGE("Sélectionnez au moins"+CHR(10)+"deux éléments avant"+CHR(10)+"d''appeler ce script")'
exit
end
'SAVEALL(-1):O=FIRSTSEL:WHILE(O,IF(ALIGNEMENT<3,MOVE(O,0,'ligne_base'-LINE(O)),MOVE(O,'colonne_base'-COL(O),0)):O=NEXTSEL(O))'
exit
/* Traitement des erreurs, interruption du programme */
syntax:
erreur=RC
'MESSAGE("Erreur de syntaxe"+CHR(10)+"en ligne 'SIGL'"+CHR(10)+"'errortext(erreur)'")'
exit
error:
'MESSAGE("Erreur en ligne 'SIGL'")'
exit